-
Re: Automatically load lisp programs on program startup
APPLOAD is available with BricsCAD, but you need to run each time you want to load an application, which is similar to the way older versions of AutoCAD worked. You could try raising a support reques…2 -
Re: Set attribute value for windowed objects
Option to update the tag using LISP (defun C:BET1-update ( / sset newval tag oBlock att) (princ "\nSelect blocks with attributes: ") ; prompt user (setq sset (ssget '((0 . "INSERT"…1 -
Re: Set attribute value for windowed objects
You don't need necessarily need a program to do this. You could select the blocks, then simply modify the attribute value from the Properties panel. Alternatively, you could use the FIND command to f…1 -
Re: how to optain all lisp functions list?
BricsCAD LISP provides Fast-Com, which allows COM based LISP to work. the implimentation is ongoing, so you may find some visual lisp options are missing in Linux.1 -
Re: how to optain all lisp functions list?
Here1